enum LinksConversion extends Enum<LinksConversion>
Enum Constant and Description |
---|
BIBLIO
Hyperlinks will be converted into the bibliography items.
|
FOOTNOTES
Hyperlinks will be converted into the footnotes containing the link.
|
HYPERTEX
Hyperlinks will be converted using the hyperref package which is built on
hypertex package.
|
IGNORE
Hyperlinks are ignored.
|
Modifier and Type | Method and Description |
---|---|
static LinksConversion |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static LinksConversion[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final LinksConversion FOOTNOTES
public static final LinksConversion BIBLIO
public static final LinksConversion HYPERTEX
public static final LinksConversion IGNORE
public static LinksConversion[] values()
for (LinksConversion c : LinksConversion.values()) System.out.println(c);
public static LinksConversion valueOf(String name)
name
- the name of the enum constant to be returned.IllegalArgumentException
- if this enum type has no constant with the specified nameNullPointerException
- if the argument is null